/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

body {
	background: #212121;
	font-size:22px;
	line-height: 32px;
	color: #ffffff;
	margin: 0;
	padding: 0;
	word-wrap:break-word !important;
	font-family: 'Merriweather', Georgia, serif;


	box-sizing: border-box;
	}

h1 {
	font-size: 60px;
	text-align: center;
	color: #FFF;
}	

h2 {
    font-size: 40px;
	text-align: center;
	color: #FFF;
    font-family: 'Playfair Display', serif;
}

h3 {
	font-size: 30px;
	line-height: 34px;
	text-align: center;
	color: #FFF;
    font-family: 'Montserrat', sans-serif;
}

h3 a {
	color: #FFF;
}

a {
	color: #FFF;
}

h1 {
	margin-top: 100px;
	text-align:center;
	font-size:60px;
	line-height: 70px;
	font-family: 'Bree Serif', 'serif';
	}

#container {
	margin: 0 auto;
	max-width: 890px;
}

p {
	text-align: center;
}

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	background-color: #D4CFC5;

	position: fixed; /* Nav blijft op dezelfde plek staan */
    top: 0; /* Zet de nav aan de bovenkant van de pagina */
    left: 0; /* Begin aan de linkerkant */
    width: 99%;   /* Zorg dat de nav de volledige breedte heeft */
    
    padding: 10px 20px;
    
    z-index: 1000; /* Zorg dat de nav boven andere elementen staat */
}

#logo {
	display: block;
	padding: 0 30px;
	float: left;
	font-size:20px;
	line-height: 60px;
	width: 150px; 
    height: auto;


}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	
	background-color: #D4CFC5;
	}

/* Styling the links */
nav a {
	display:block;
	padding:14px 20px;	
	color: #212121;
	font-size:17px;
	text-decoration:none;
}


nav ul li ul li:hover { background: #000000; }

/* Background color change on Hover */
nav a:hover { 
	background-color: #C8C3B9; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' + '; }
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

	nav {
		margin: 0;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		background-color: #D4CFC5;
		padding:14px 20px;	
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
	}

	.toggle:hover {
		background-color: #000000;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: #000000;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #212121; 
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}


@media all and (max-width : 350px) {

#logo {
	width: 70%;
}

}












/* Contact-container styling */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    max-width: 930px;
    margin: 0 auto;
    gap: 0px;
}
















/*banner foto*/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery img {
    width: 100%;
    border-radius: 5px;
}













/* Responsiviteit */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        width: 90%; /* Zorgt dat beide secties de volledige breedte gebruiken */
    }
}













/*Foto's naast elkaar dit is gemaakt voor de voorstelling hobby pagina oorspronkelijk*/
.image-row {
    display: flex; /* Zet de foto's naast elkaar */
    justify-content: center; /* Centreer de foto's binnen de container */
    gap: 10px; /* Voegt ruimte toe tussen de foto's */
}

.image-row a img {
    width: 400px; /* Stel de breedte van de foto's in */
    height: auto; /* Behoud de aspect ratio */
    border-radius: 8px; /* Optioneel: Maak de hoeken rond */
    transition: transform 0.3s ease; /* Animatie-effect bij hover */
}

.image-row a img:hover {
    transform: scale(1.1); /* Vergroot de foto bij hover */
    cursor: pointer; /* Geef een pointer-cursor aan bij hover */
}












/*Foto Nails*/
/* Basis styling voor de container */
.agallery {
	grid-template-columns: repeat(3, 1fr); /* 3 kolommen */
    display: flex;              /* Maakt een flex-container */
    flex-wrap: wrap;            /* Zorgt ervoor dat items naar een nieuwe regel gaan als er geen ruimte meer is */
    justify-content: center;    /* Optioneel: centreert de foto's */
    gap: 10px;                  /* Ruimte tussen de foto's */
	padding: 5px;
}

/* Styling voor de foto's */
.agallery img {
    width: 30%;                 /* Zorgt ervoor dat elke foto 30% van de container breed is */
    max-width: 300px;           /* Optioneel: limiteert hoe breed een foto maximaal mag zijn */
    height: auto;               /* Houdt de verhoudingen van de foto's */
    object-fit: cover;          /* Houdt de inhoud van de foto's goed */
	flex: 1 1 calc((100% - 60px) / 3); 
	
}










/*Foto Diamond Painting*/

/* Stijl voor de gallery-container */
.bgallery {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Ruimte tussen rijen */
    padding: 20px;
    width: fit-content;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Een rij met foto's */
.row {
    display: flex;
    justify-content: center;
    gap: 15px; /* Ruimte tussen foto's */
}

/* Stijl voor figure */
figure {
    margin: 0;
    text-align: center;
}

/* Stijl voor horizontale foto's */
.horizontal {
    width: 300px; /* Breedte voor horizontale foto's */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Stijl voor verticale foto's */
.vertical {
    width: 150px; /* Breedte voor verticale foto's */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Stijl voor figcaptions */
figcaption {
    margin-top: 8px;
    font-size: 0.9em;
    color: #555;
}











/*footer*/
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
}









/*pagina crochet - onderste foto, de hoeken zijn ronder hierdoor*/
#round {
	border-radius: 5%;
}





/*verzendknop contact pagina*/
.verzendknop {
    position: center;  
	background-color: #212121;
	border: none;
	display: flex;    /* Enable flexbox */
	cursor: pointer; /*wordt handje wanneer je over de knop gaat*/
}

.verzendknop:hover {
    opacity: 0.8; /* Maakt de knop iets doorzichtiger bij hover */
}